home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / 1994.12.gz / 1994.12 / 000027_rbhumbla@ames.UCSD.EDU_Tue Dec 6 06:16:47 1994.msg < prev    next >
Internet Message Format  |  1994-12-30  |  1KB

  1. Received: from ucsd.edu by cs.umb.edu with SMTP id AA13918
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Tue, 6 Dec 1994 17:22:39 -0500
  3. Received: from mechanics.UCSD.EDU by ucsd.edu; id OAA06570
  4.     sendmail 8.6.9/UCSD-2.2-sun via SMTP
  5.     Tue, 6 Dec 1994 14:16:54 -0800 for <tex-k@cs.umb.edu>
  6. Received: by mechanics.UCSD.EDU (4.1/UCSDPSEUDO.4)
  7.     id AA02779 for tex-k@cs.umb.edu; Tue, 6 Dec 94 14:16:48 PST
  8. From: rbhumbla@ames.UCSD.EDU (Ravinder Bhumbla)
  9. Message-Id: <9412062216.AA02779@mechanics.UCSD.EDU>
  10. Subject: MakeTeXPK - fix to permissions on created fonts
  11. To: tex-k@cs.umb.edu
  12. Date: Tue, 6 Dec 1994 14:16:47 -0800 (PST)
  13. X-Mailer: ELM [version 2.4 PL24]
  14. Mime-Version: 1.0
  15. Content-Type: text/plain; charset=US-ASCII
  16. Content-Transfer-Encoding: 7bit
  17. Content-Length: 562       
  18.  
  19. In MakeTeXPK Version 0.5 which comes with xdvik and dvipsk, the fonts
  20. created usually have the default permissions (640 in my case).  By
  21. default these fonts are kept in the /usr/local/lib/texmf/fonts/tmp
  22. directory until manually moved later.  It would be nicer if the fonts 
  23. were world readable so that other wouldn't to have them created again.
  24.  
  25. Adding the following as the *second*-to-last executable statement in
  26. MakeTeXPK fixes that.
  27.  
  28.     cd $DESTDIR || exit 1
  29.     mv pktmp.$$ $PKNAME
  30.     chmod 644 $DESTDIR/$PKNAME # add this line below the above two.
  31.  
  32. Thanks,
  33. Ravi